翻訳と辞書
Words near each other
・ Random oracle
・ Random orbital sander
・ Random Passage
・ Random password generator
・ Random permutation
・ Random permutation statistics
・ Random phase approximation
・ Random phase multiple access
・ Random plot generator
・ Random positioning machine
・ Random projection
・ Random Quest
・ Random Recipe
・ Random regular graph
・ Random Roads Collection
Random search
・ Random seed
・ Random self-reducibility
・ Random sequence
・ Random Shoes
・ Random Spirit Lover
・ Random stimulus
・ Random structure function
・ Random subspace method
・ Random test generator
・ Random testing
・ Random Thoughts
・ Random Thoughts (Don Pullen album)
・ Random Thoughts (Faye Wong album)
・ Random Thoughts (Koolism album)


Dictionary Lists
翻訳と辞書 辞書検索 [ 開発暫定版 ]
スポンサード リンク

Random search : ウィキペディア英語版
Random search
Random search (RS) is a family of numerical optimization methods that do not require the gradient of the problem to be optimized, and RS can hence be used on functions that are not continuous or differentiable. Such optimization methods are also known as direct-search, derivative-free, or black-box methods.
The name "random search" is attributed to Rastrigin〔 who made an early presentation of RS along with basic mathematical analysis. RS works by iteratively moving to better positions in the search-space, which are sampled from a hypersphere surrounding the current position.
== Algorithm ==

Let ''f'': (unicode:ℝ)''n'' → (unicode:ℝ) be the fitness or cost function which must be minimized. Let x ∈ (unicode:ℝ)''n'' designate a position or candidate solution in the search-space. The basic RS algorithm can then be described as:
* Initialize x with a random position in the search-space.
* Until a termination criterion is met (e.g. number of iterations performed, or adequate fitness reached), repeat the following:
*
* Sample a new position y from the hypersphere of a given radius surrounding the current position x (see e.g. Marsaglia's technique for sampling a hypersphere.)
*
* If (''f''(y) < ''f''(x)) then move to the new position by setting x = y
* Now x holds the best-found position.

抄文引用元・出典: フリー百科事典『 ウィキペディア(Wikipedia)
ウィキペディアで「Random search」の詳細全文を読む



スポンサード リンク
翻訳と辞書 : 翻訳のためのインターネットリソース

Copyright(C) kotoba.ne.jp 1997-2016. All Rights Reserved.